home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power Programmierung
/
Power-Programmierung (Tewi)(1994).iso
/
magazine
/
drdobbs
/
1991
/
02
/
nelson
/
read.me
< prev
Wrap
Text File
|
1991-01-17
|
3KB
|
72 lines
CODER.H This is the header file needed to use CODER.C.
CODER.C This file contains the routines needed to implement
an arithemtic coder.
BITIO.H This is the header file needed to use BITIO.C.
BITIO.C This is the module used to do bit-oriented I/O.
BILL.C This is the driver program that compresses
then expands the BILL GATES message.
COMP-1.C This is the main module for a fixed-context
compression program. It is used to drive MODEL-1
and MODEL-1A. It doesn't know about escape codes.
EXPAND-1.C This is the main module for a fixed-context
decompression program. It is used with MODEL-1
and MODEL-1A. Doesn't know about escape codes,
order (-1) models, or any of that stuff.
MODEL.H This is the header file that is used when working
with any of the modeling modules.
MODEL-1.C This is the modeling model for a very siple order-0
fixed context model. To be used with COMP-1 or
EXPAND-1.
COMP-2.C This is the main module for a highest-context
compression program. It handles escape codes, and
does compression ratio checking as well. It is
used with MODEL-2 and MODEL-2A.
EXPAND-2.C This is the main module for a highest-context
decompression program. It understands all of the
fancy stuff used in MODEL-2 and MODEL-2A.
MODEL-2.C This is the highly optimized source for a
variable order compression program. It is
used with COMP-2 or EXPAND-2.
CHURN.C A program to test compression software, by churning
through entire directory trees. Specific to
Turbo C, Microsoft C, or TopSpeed C on MS-DOS.
CHURNX.C The same program as CHURN.C, adapted to Xenix
systems. Should work with Unix, but don't know
for sure.
LZHUF.C Haruyasu Yoshizaki's program to perform LZSS encoding
with adaptive Huffman coding. This program has
no copyright printed. The code is substantially
similar to the source for LHARC, which is copyrighted,
but may be freely distributed.
COMPRESS.C The Unix compress program. Not copyrighted or
supported.
MODEL-1A.C This is an order-1 fixed context modeling unit, that
can be combined with COMP-1 and EXPAND-1. Used
to test compression for higher order models that
don't use escape codes.
MODEL-2A.C This is the source for an order-1 highest-order
modeling program. It understands escape codes,
but has a simple data structure that takes up a
lot of room. So it is fast, but takes up lots
of RAM. Can't be expanded beyond order-1 in a
PC due to memory limitations.